var runtime.reflectOffs
18 uses
runtime (current package)
proc.go#L703: lockInit(&reflectOffs.lock, lockRankReflectOffs)
runtime1.go#L641: if reflectOffs.m == nil {
runtime1.go#L642: reflectOffs.m = make(map[int32]unsafe.Pointer)
runtime1.go#L643: reflectOffs.minv = make(map[unsafe.Pointer]int32)
runtime1.go#L644: reflectOffs.next = -1
runtime1.go#L646: id, found := reflectOffs.minv[ptr]
runtime1.go#L648: id = reflectOffs.next
runtime1.go#L649: reflectOffs.next-- // use negative offsets as IDs to aid debugging
runtime1.go#L650: reflectOffs.m[id] = ptr
runtime1.go#L651: reflectOffs.minv[ptr] = id
type.go#L88: var reflectOffs struct {
type.go#L96: lock(&reflectOffs.lock)
type.go#L98: raceacquire(unsafe.Pointer(&reflectOffs.lock))
type.go#L104: racerelease(unsafe.Pointer(&reflectOffs.lock))
type.go#L106: unlock(&reflectOffs.lock)
type.go#L127: res, found := reflectOffs.m[int32(off)]
type.go#L159: res := reflectOffs.m[int32(off)]
type.go#L201: res := reflectOffs.m[int32(off)]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |